home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Synth / Envelope.h < prev    next >
C/C++ Source or Header  |  2005-03-14  |  2KB  |  59 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   Envelope.h - Envelope implementation
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #ifndef ENVELOPE_H
  24. #define ENVELOPE_H
  25.  
  26. #include <math.h>
  27. #include "../globals.h"
  28. #include "../Params/EnvelopeParams.h"
  29.  
  30. class Envelope{
  31. public:
  32.     Envelope(EnvelopeParams *envpars,REALTYPE basefreq);
  33.     ~Envelope();
  34.     void relasekey();
  35.     REALTYPE envout();
  36.     REALTYPE envout_dB();
  37.     int finished();//returns 1 if the envelope is finished
  38. private:
  39.     int envpoints;
  40.     int envsustain;//"-1" means disabled
  41.     REALTYPE envdt[MAX_ENVELOPE_POINTS];//millisecons
  42.     REALTYPE envval[MAX_ENVELOPE_POINTS];// [0.0 .. 1.0]
  43.     REALTYPE envstretch; 
  44.     int linearenvelope;
  45.  
  46.     int currentpoint; //current envelope point (starts from 1)
  47.     int forcedrelase;
  48.     char keyreleased; //if the key was released 
  49.     char envfinish;    
  50.     REALTYPE t;   // the time from the last point
  51.     REALTYPE inct;// the time increment 
  52.     REALTYPE envoutval;//used to do the forced release
  53. };
  54.  
  55.  
  56. #endif
  57.  
  58.  
  59.